CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - map stl

搜索资源列表

  1. boost_source_code

    0下载:
  2. 正则表达式,可以与POSIX API和Perl语言处理正则表达式的功能相媲美,而且还能支持各种字符类型(如char、wchar_t,甚至还可以是自定义字符类型); 多线程,想了很久的跨平台多线程库了; 数据结构“图”,再加上即将加入标准的hash_set、hash_map、hash_multiset、hash_multimap等等(事实上不少STL实作,如SGI STL,已经支持以上数据结构),C++对数据结构的支持已近完备; python,没错,对Python语言的支持;
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:3491458
    • 提供者:hnycmx
  1. cpp_mru_cache

    0下载:
  2. I suppose you know what a MRU cache is, otherwise you wouldn t been reading this. This is an implementation of a very simple one using only STL. To implement a cache, derive a subclass from this template class. As an implementor, you d have
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1828
    • 提供者:haha
  1. testIni

    0下载:
  2. STL解析ini文件的代码,ini信息保存到map中,可直接使用,简单明了。
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:17224
    • 提供者:陶汉军
  1. stlmap

    0下载:
  2. stl中map用法详解
  3. 所属分类:STL

    • 发布日期:2014-01-18
    • 文件大小:14685
    • 提供者:王鹏雷
  1. vecDLL

    0下载:
  2. Dll无法直接导出泛型模板(generalized template),因此,如果要导出stl类,则模板必须先实例化(instantiated)。另外,如果导出的STL类使用了其他STL类,那么这些其他类必须同时被导出。目前stl中唯一能够被导出的容器是vector,其他容器(如map、set、queue、list、deque)都因包含嵌套类而不能被导出。
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:15163
    • 提供者:范杰
  1. TestContainer

    0下载:
  2. STL 容器 使用例子 MAP VECTOR LIST
  3. 所属分类:STL

    • 发布日期:2008-10-13
    • 文件大小:8615
    • 提供者:振宇
  1. CMap

    0下载:
  2. 一个学习STL 中Map的类,主要实现stl::map的查找、删除、增加等
  3. 所属分类:STL

    • 发布日期:2008-10-13
    • 文件大小:9644
    • 提供者:刘震
  1. mapTest

    0下载:
  2. C++STL map操作实例介绍。主要演示map的操作技巧和方法。
  3. 所属分类:STL

    • 发布日期:2008-10-13
    • 文件大小:8132
    • 提供者:zhangziliang
  1. stl_sample

    0下载:
  2. 本程序提供一些stl的实例,帮助入门stl。其中有向量、队列、map等。-some stl samples.
  3. 所属分类:Console

    • 发布日期:2017-11-18
    • 文件大小:10659
    • 提供者:kevin
  1. BusyByte

    0下载:
  2. 使用VC6开发,C++语言编写。充分使用stl特性。 功能:模拟电子器件的功能。 由电子器件引脚的输入波形最快的得出相应的输出波形。并输出一个bmp的波形直观图。-Use VC6 to develop, C++ Languages. Full use of stl characteristics. Functions: the function of analog electronic devices. Electronic devices from the input pin to draw
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-04-17
    • 文件大小:360479
    • 提供者:王小九
  1. telnumsystem

    0下载:
  2. 电话号码管理系统,很小的程序,是学习stl,自己编的,用map实现,还有文档说明-Telephone number management system, small procedures, are studying stl, own, and with map implementation, there is documentation
  3. 所属分类:STL

    • 发布日期:2017-04-17
    • 文件大小:66222
    • 提供者:sdfsd
  1. Server1

    0下载:
  2. 基于VISA的网络仪器控制的服务器端程序,用Socket封装了viRead和viWrite函数,并用Windows API函数实现了对网络仪器的控制,其中用到了STL中的map-Based on the VISA network equipment control server-side procedures, using Socket package of Viread and viWrite function, and use Windows API function implementat
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-05-09
    • 文件大小:1909844
    • 提供者:海涛
  1. STLmap

    0下载:
  2. 介绍STL中map的使用方法,比较详细易懂-STL map
  3. 所属分类:STL

    • 发布日期:2017-04-26
    • 文件大小:12964
    • 提供者:王浩
  1. CH_STL

    0下载:
  2. 详细介绍STL,包括vector,deque,list,set和map的实现原理和使用方法-Details of STL, including the vector, deque, list, set and map to achieve the principles and use
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-15
    • 文件大小:3711101
    • 提供者:向前
  1. STLinusagemap

    0下载:
  2. map中由于它内部有序,由红黑树保证,因此很多函数执行的时间复杂度都是log2N的,如果用map函数可以实现的功能,而STL Algorithm也可以完成该功能,建议用map自带函数,效率高一些。 -map due to its internal and orderly to ensure the tree by the red and black, many functions of the time complexity of the implementation are log2N,
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:12560
    • 提供者:邹氏
  1. hashmap

    0下载:
  2. 哈希表的实现 hashmap.h - declaration of class HashMap hashmap.cpp - definition of class HashMap hash-driver.cpp demonstrates use of class HashMap and its member functions.-A Hash Table Implementation The following header file and implementation fil
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:667941
    • 提供者:刘亚
  1. wrk

    0下载:
  2. 利用STL中的MAP和VECTOR实现的一个多节点树-The use of STL in the MAP and the VECTOR to achieve a multi-node tree
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-27
    • 文件大小:18335
    • 提供者:Waxgin
  1. include

    0下载:
  2. 一个二叉树算法的MAP的template,使用与分配内存,经测试(顺序插入256万条数据)效率比STL高5倍。乱序插入256万条数据,是stl的2倍。-A B-Tree Map template,It 5 times faster than the stl::Map.(Test insert 2.56M datas in sequential order. 2 times faster in random order.)
  3. 所属分类:STL

    • 发布日期:2017-03-30
    • 文件大小:7189
    • 提供者:Zephyr Shannon
  1. MapDemo_20100514

    0下载:
  2. STL库中map的用法,教你如何使用map来添加和删除元素-STL map library usage, teach you how to use the map to add and delete elements
  3. 所属分类:Console

    • 发布日期:2017-04-08
    • 文件大小:6078
    • 提供者:周峰
  1. ShowVBStrArr

    0下载:
  2. API函数原型测试——DLL中返回字符串数组的函数原型(导出函数的原型不用vector<wstring>),演示用变体/安全数组代替vector/map等STL容器制作标准DLL(这里是C的接口、C++的实现)的一般方法,在vb/vc中测试通过。-API function prototypes- DLL returns a string array of function prototypes (not export the function prototype vector <
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-18
    • 文件大小:4762543
    • 提供者:hanxiaohua
« 1 23 4 »
搜珍网 www.dssz.com